home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / SLEEP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  212 b   |  11 lines

  1. /* SLEEP.C --- p. 673 */
  2.  #include <dos.h>
  3.  main()
  4.  {
  5.     unsigned duration;
  6.     printf("Enter duration of 440-Hz tone (in seconds); ");
  7.     scanf(" %u", &duration);
  8.     sound(440);
  9.     sleep(duration);
  10.     nosound();
  11. }